home *** CD-ROM | disk | FTP | other *** search
/ Clickx 47 / Clickx 47.iso / assets / software / sswitchxp152.exe / source / SpeedswitchXP / SystemInfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-06-13  |  1.4 KB  |  52 lines

  1. /*
  2.    SpeedswitchXP V1.5
  3.    - Windows XP CPU Frequency Control for Notebooks -
  4.  
  5.    Copyright(c) 2002-2005 Christian Diefer
  6.  
  7.    This program is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License version 2 as 
  9.    published by the Free Software Foundation.
  10.    
  11.    This program is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.    
  16.    You should have received a copy of the GNU General Public License
  17.    along with this program; if not, write to the Free Software
  18.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20.  
  21. #pragma once
  22.  
  23. #include "afxcmn.h"
  24. #include "afxwin.h"
  25.  
  26. // CSystemInfo dialog
  27.  
  28. class CSystemInfo : public CDialog
  29. {
  30.     DECLARE_DYNAMIC(CSystemInfo)
  31.  
  32. public:
  33.     CSystemInfo(CWnd* pParent = NULL);   // standard constructor
  34.     virtual ~CSystemInfo();
  35.   void setVars();
  36.  
  37. // Dialog Data
  38.     enum { IDD = IDD_SYSINFO };
  39.  
  40. protected:
  41.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42.   virtual BOOL OnInitDialog();
  43.   afx_msg void OnTcnSelchangeTab3(NMHDR *pNMHDR, LRESULT *pResult);
  44.     virtual void OnOK();
  45.  
  46.     DECLARE_MESSAGE_MAP()
  47.  
  48. private:
  49.   CTabCtrl tabCtrl;
  50.   CDialog* tabs[4];
  51. };
  52.